@code-pushup/cli 0.47.0 → 0.49.0
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/README.md +2 -1
- package/index.js +1000 -1133
- package/package.json +5 -5
- package/src/lib/compare/compare-command.d.ts +1 -1
- package/src/lib/implementation/core-config.middleware.d.ts +5 -2
- package/src/lib/implementation/skip-plugins.middleware.d.ts +2 -0
- package/src/lib/implementation/skip-plugins.model.d.ts +6 -0
- package/src/lib/implementation/skip-plugins.options.d.ts +3 -0
- package/src/lib/implementation/validate-plugin-filter-options.utils.d.ts +8 -0
- package/src/lib/options.d.ts +1 -0
- package/src/lib/implementation/only-plugins.utils.d.ts +0 -8
package/README.md
CHANGED
|
@@ -198,9 +198,10 @@ Each example is fully tested to demonstrate best practices for plugin testing as
|
|
|
198
198
|
| **`--upload.server`** | `string` | n/a | URL to your portal server. |
|
|
199
199
|
| **`--upload.apiKey`** | `string` | n/a | API key for the portal server. |
|
|
200
200
|
| **`--onlyPlugins`** | `string[]` | `[]` | Only run the specified plugins. Applicable to all commands except `upload`. |
|
|
201
|
+
| **`--skipPlugins`** | `string[]` | `[]` | Skip the specified plugins. Applicable to all commands except `upload`. |
|
|
201
202
|
|
|
202
203
|
> [!NOTE]
|
|
203
|
-
> All common options, except `--onlyPlugins`, can be specified in the configuration file as well.
|
|
204
|
+
> All common options, except `--onlyPlugins` and `--skipPlugins`, can be specified in the configuration file as well.
|
|
204
205
|
> CLI arguments take precedence over configuration file options.
|
|
205
206
|
|
|
206
207
|
> [!NOTE]
|